JavaScript must be enabled to play.
Browser lacks capabilities required to play.
Upgrade or switch to another browser.
Loading…
<<set $tipo to ["torta","bolo"]>>\ <<set $recheio to ["banana","maracujá"]>>\ <<set $cobertura to ["morango","chantilly"]>>\ <<set $favorita to $tipo.random() + " de " + $recheio.random() + " com " + $cobertura.random()>>\ <<set $cozinha to []>><<set $escolha to []>>\ <<="Sua sobremesa favorita é "+$favorita+".">> <span id="op">\ <<="Opções da cozinha:">> <<link "Encontrar uma sobremesa">>\ <<set $cozinha to []>>\ <<replace "#op2">>\ <<="Escolha uma sobremesa:">> <<for _n to 0; _n lt 3; _n++>>\ <<run $cozinha.push($tipo.random() + " de " + $recheio.random() + " com " + $cobertura.random())>>\ <<link_encontrar _n $cozinha[_n]>> <</for>>\ <</replace>>\ <</link>> <<link "Comer uma sobremesa">>\ <<if $escolha.length gt 0>>\ <<replace "#op2">>\ <<="Comer esta sobremesa:">> <<for _n to 0; _n lt $escolha.length; _n++>>\ <<link_comer _n $escolha[_n]>> <</for>>\ <</replace>>\ <<else>>\ <<replace "#op2">><<="Você não tem sobremesa.">><</replace>>\ <</if>>\ <</link>> </span> <span id="op2"></span>
<<widget "link_encontrar">>\ <<link $args[1] >>\ <<replace "#op2">><<= "Você encontrou: "+$args[1]+".">><</replace>>\ <<run $escolha.push($cozinha[$args[0]])>>\ <</link>>\ <</widget>> <<widget "link_comer">>\ <<link $args[1] >>\ <<replace "#op2">><<= "Você comeu: "+$args[1]+".">><</replace>>\ <<if $args[1] is $favorita>><<append "#op2">><<= " Estava uma delícia! É a sua sobremesa favorita!">><</append>><</if>>\ <<run $escolha.deleteAt($args[0])>>\ <</link>>\ <</widget>>